curl --request POST \
--url https://agent-prod.studio.lyzr.ai/v3/agents/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "<string>",
"system_prompt": "<string>",
"description": "<string>",
"features": [
{
"type": "<string>",
"config": {},
"priority": 123
}
],
"tools": [
"<string>"
],
"llm_credential_id": "<string>",
"provider_id": "<string>",
"model": "<string>",
"top_p": 123,
"temperature": 123,
"response_format": {}
}
'